在springmvc.xml配置: <!-- 处理请求返回json字符串的乱码问题 --> <mvc:annotation-driven> <mvc:message-converters> <bean class="org.springframework.http.converter.StringH ...
分类:
编程语言 时间:
2021-02-18 12:59:23
阅读次数:
0
参考帖子:https://blog.csdn.net/linhunshi/article/details/72866345这篇帖子非常非常有用! 1、确保Android手机已经连上电脑,并且打开USB调试。(开发者模式打开+USB调试打开) 2、MAC终端下,命令行执行system_profiler ...
分类:
数据库 时间:
2021-02-18 12:58:46
阅读次数:
0
JSTL & Standard <!-- https://mvnrepository.com/artifact/javax.servlet/jstl --> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifac ...
分类:
Web程序 时间:
2021-02-18 12:56:03
阅读次数:
0
import axios from "axios"; //第一种方式 export function request(config,success,failure) { const instance = axios.create({ baseURL:"http://123.207.32.32:800 ...
分类:
移动开发 时间:
2021-02-18 12:52:38
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi ...
分类:
编程语言 时间:
2021-02-17 15:13:19
阅读次数:
0
一开始不是很理解,查了资料,觉得这个说的非常好! iso 对可用性的定义: the extent to which a system, product or service can be used by specified users to achieve specified goals with ...
分类:
其他好文 时间:
2021-02-17 15:07:39
阅读次数:
0
NULL值是对列的一种特殊约束,NULL与空值'' 是两个不一样的值,NULL表示不确定的值。Mysql中可以操作NULL的操作符为以下四个: ① IS NULL (可使用索引) ② IS NOT NULL (索引失效) ③ <=> 太空船操作符,select NULL <=> NULL 得到结果t ...
分类:
其他好文 时间:
2021-02-17 15:02:32
阅读次数:
0
/** * 打开nginx配置文件nginx.conf,添加以下内容 * 注意层级,在 http{ server { location { #这里添加 } } } 添加 */ location / { try_files $uri $uri/ $uri.php?$args; } ...
分类:
Web程序 时间:
2021-02-17 14:58:17
阅读次数:
0
Perfect简介:Perfect框架是Swift的服务器框架之一。 环境:MacOS 10.15.6 ,Xcode 12.3 1、新建一个文件夹 2、终端 cd到上面创建的文件夹,然后命令 git clone https://github.com/PerfectlySoft/PerfectTemp ...
分类:
编程语言 时间:
2021-02-17 14:49:14
阅读次数:
0
一、为什么不直接使用现有nginx二进制文件直接安装 因为现有的nginx二进制文件是编译好的,内置的一些功能模块已经固定,不能添加或移除。如果自己编译生成nginx,则可按需添加或移除nginx中功能模块。 二、开始编译生成nginx二进制文件 1. 下载Nginx,在官网http://nginx ...
分类:
其他好文 时间:
2021-02-17 14:42:32
阅读次数:
0